home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / test_math.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  178 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. from test.test_support import TestFailed, verbose
  5. seps = '1e-05'
  6. eps = eval(seps)
  7. print 'math module, testing with eps', seps
  8. import math
  9.  
  10. def testit(name, value, expected):
  11.     if abs(value - expected) > eps:
  12.         raise TestFailed, '%s returned %f, expected %f' % (name, value, expected)
  13.     
  14.  
  15. print 'constants'
  16. testit('pi', math.pi, 3.1415926000000001)
  17. testit('e', math.e, 2.7182818000000002)
  18. print 'acos'
  19. testit('acos(-1)', math.acos(-1), math.pi)
  20. testit('acos(0)', math.acos(0), math.pi / 2)
  21. testit('acos(1)', math.acos(1), 0)
  22. print 'asin'
  23. testit('asin(-1)', math.asin(-1), -(math.pi) / 2)
  24. testit('asin(0)', math.asin(0), 0)
  25. testit('asin(1)', math.asin(1), math.pi / 2)
  26. print 'atan'
  27. testit('atan(-1)', math.atan(-1), -(math.pi) / 4)
  28. testit('atan(0)', math.atan(0), 0)
  29. testit('atan(1)', math.atan(1), math.pi / 4)
  30. print 'atan2'
  31. testit('atan2(-1, 0)', math.atan2(-1, 0), -(math.pi) / 2)
  32. testit('atan2(-1, 1)', math.atan2(-1, 1), -(math.pi) / 4)
  33. testit('atan2(0, 1)', math.atan2(0, 1), 0)
  34. testit('atan2(1, 1)', math.atan2(1, 1), math.pi / 4)
  35. testit('atan2(1, 0)', math.atan2(1, 0), math.pi / 2)
  36. print 'ceil'
  37. testit('ceil(0.5)', math.ceil(0.5), 1)
  38. testit('ceil(1.0)', math.ceil(1.0), 1)
  39. testit('ceil(1.5)', math.ceil(1.5), 2)
  40. testit('ceil(-0.5)', math.ceil(-0.5), 0)
  41. testit('ceil(-1.0)', math.ceil(-1.0), -1)
  42. testit('ceil(-1.5)', math.ceil(-1.5), -1)
  43. print 'cos'
  44. testit('cos(-pi/2)', math.cos(-(math.pi) / 2), 0)
  45. testit('cos(0)', math.cos(0), 1)
  46. testit('cos(pi/2)', math.cos(math.pi / 2), 0)
  47. testit('cos(pi)', math.cos(math.pi), -1)
  48. print 'cosh'
  49. testit('cosh(0)', math.cosh(0), 1)
  50. testit('cosh(2)-2*cosh(1)**2', math.cosh(2) - 2 * math.cosh(1) ** 2, -1)
  51. print 'degrees'
  52. testit('degrees(pi)', math.degrees(math.pi), 180.0)
  53. testit('degrees(pi/2)', math.degrees(math.pi / 2), 90.0)
  54. testit('degrees(-pi/4)', math.degrees(-(math.pi) / 4), -45.0)
  55. print 'exp'
  56. testit('exp(-1)', math.exp(-1), 1 / math.e)
  57. testit('exp(0)', math.exp(0), 1)
  58. testit('exp(1)', math.exp(1), math.e)
  59. print 'fabs'
  60. testit('fabs(-1)', math.fabs(-1), 1)
  61. testit('fabs(0)', math.fabs(0), 0)
  62. testit('fabs(1)', math.fabs(1), 1)
  63. print 'floor'
  64. testit('floor(0.5)', math.floor(0.5), 0)
  65. testit('floor(1.0)', math.floor(1.0), 1)
  66. testit('floor(1.5)', math.floor(1.5), 1)
  67. testit('floor(-0.5)', math.floor(-0.5), -1)
  68. testit('floor(-1.0)', math.floor(-1.0), -1)
  69. testit('floor(-1.5)', math.floor(-1.5), -2)
  70. print 'fmod'
  71. testit('fmod(10,1)', math.fmod(10, 1), 0)
  72. testit('fmod(10,0.5)', math.fmod(10, 0.5), 0)
  73. testit('fmod(10,1.5)', math.fmod(10, 1.5), 1)
  74. testit('fmod(-10,1)', math.fmod(-10, 1), 0)
  75. testit('fmod(-10,0.5)', math.fmod(-10, 0.5), 0)
  76. testit('fmod(-10,1.5)', math.fmod(-10, 1.5), -1)
  77. print 'frexp'
  78.  
  79. def testfrexp(name, .2, .4):
  80.     (mant, exp) = .2
  81.     (emant, eexp) = .4
  82.     if abs(mant - emant) > eps or exp != eexp:
  83.         raise TestFailed, '%s returned %r, expected %r' % (name, (mant, exp), (emant, eexp))
  84.     
  85.  
  86. testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1))
  87. testfrexp('frexp(0)', math.frexp(0), (0, 0))
  88. testfrexp('frexp(1)', math.frexp(1), (0.5, 1))
  89. testfrexp('frexp(2)', math.frexp(2), (0.5, 2))
  90. print 'hypot'
  91. testit('hypot(0,0)', math.hypot(0, 0), 0)
  92. testit('hypot(3,4)', math.hypot(3, 4), 5)
  93. print 'ldexp'
  94. testit('ldexp(0,1)', math.ldexp(0, 1), 0)
  95. testit('ldexp(1,1)', math.ldexp(1, 1), 2)
  96. testit('ldexp(1,-1)', math.ldexp(1, -1), 0.5)
  97. testit('ldexp(-1,1)', math.ldexp(-1, 1), -2)
  98. print 'log'
  99. testit('log(1/e)', math.log(1 / math.e), -1)
  100. testit('log(1)', math.log(1), 0)
  101. testit('log(e)', math.log(math.e), 1)
  102. testit('log(32,2)', math.log(32, 2), 5)
  103. testit('log(10**40, 10)', math.log(10 ** 40, 10), 40)
  104. testit('log(10**40, 10**20)', math.log(10 ** 40, 10 ** 20), 2)
  105. print 'log10'
  106. testit('log10(0.1)', math.log10(0.10000000000000001), -1)
  107. testit('log10(1)', math.log10(1), 0)
  108. testit('log10(10)', math.log10(10), 1)
  109. print 'modf'
  110.  
  111. def testmodf(name, .2, .4):
  112.     (v1, v2) = .2
  113.     (e1, e2) = .4
  114.     if abs(v1 - e1) > eps or abs(v2 - e2):
  115.         raise TestFailed, '%s returned %r, expected %r' % (name, (v1, v2), (e1, e2))
  116.     
  117.  
  118. testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
  119. testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
  120. print 'pow'
  121. testit('pow(0,1)', math.pow(0, 1), 0)
  122. testit('pow(1,0)', math.pow(1, 0), 1)
  123. testit('pow(2,1)', math.pow(2, 1), 2)
  124. testit('pow(2,-1)', math.pow(2, -1), 0.5)
  125. print 'radians'
  126. testit('radians(180)', math.radians(180), math.pi)
  127. testit('radians(90)', math.radians(90), math.pi / 2)
  128. testit('radians(-45)', math.radians(-45), -(math.pi) / 4)
  129. print 'sin'
  130. testit('sin(0)', math.sin(0), 0)
  131. testit('sin(pi/2)', math.sin(math.pi / 2), 1)
  132. testit('sin(-pi/2)', math.sin(-(math.pi) / 2), -1)
  133. print 'sinh'
  134. testit('sinh(0)', math.sinh(0), 0)
  135. testit('sinh(1)**2-cosh(1)**2', math.sinh(1) ** 2 - math.cosh(1) ** 2, -1)
  136. testit('sinh(1)+sinh(-1)', math.sinh(1) + math.sinh(-1), 0)
  137. print 'sqrt'
  138. testit('sqrt(0)', math.sqrt(0), 0)
  139. testit('sqrt(1)', math.sqrt(1), 1)
  140. testit('sqrt(4)', math.sqrt(4), 2)
  141. print 'tan'
  142. testit('tan(0)', math.tan(0), 0)
  143. testit('tan(pi/4)', math.tan(math.pi / 4), 1)
  144. testit('tan(-pi/4)', math.tan(-(math.pi) / 4), -1)
  145. print 'tanh'
  146. testit('tanh(0)', math.tanh(0), 0)
  147. testit('tanh(1)+tanh(-1)', math.tanh(1) + math.tanh(-1), 0)
  148.  
  149. def test_exceptions():
  150.     print 'exceptions'
  151.     
  152.     try:
  153.         x = math.exp(-1000000000)
  154.     except:
  155.         raise TestFailed('underflowing exp() should not have raised an exception')
  156.  
  157.     if x != 0:
  158.         raise TestFailed('underflowing exp() should have returned 0')
  159.     
  160.     
  161.     try:
  162.         x = math.exp(1000000000)
  163.     except OverflowError:
  164.         pass
  165.  
  166.     raise TestFailed("overflowing exp() didn't trigger OverflowError")
  167.     
  168.     try:
  169.         x = math.sqrt(-1.0)
  170.     except ValueError:
  171.         pass
  172.  
  173.     raise TestFailed("sqrt(-1) didn't raise ValueError")
  174.  
  175. if verbose:
  176.     test_exceptions()
  177.  
  178.